home *** CD-ROM | disk | FTP | other *** search
- // ==========================================================================
- // COLORES.H
- // (C) Anubis Software
- // Escrito el 16 de Febrero de 1995
- //
- // Esta librerÃa, nombra los colores que se pueden utilizar en modo texto
- // ==========================================================================
-
- #ifndef COLORES.H
- #define COLORES.H
-
- //definicion de los colores de texto
- #define TNEGRO 0
- #define TAZUL 1
- #define TVERDE 2
- #define TCYAN 3
- #define TROJO 4
- #define TROSA 5
- #define TMARRON 6
- #define TGRIS 7
- #define TGRISOSCURO 8
- #define TAZULBRILLANTE 9
- #define TVERDEBRILLANTE 10
- #define TCYANBRILLANTE 11
- #define TMARRONBRILLANTE 12
- #define TROSABRILLANTE 13
- #define TAMARILLO 14
- #define TBLANCO 15
-
- // Definicion de los colores de fondo
- #define FNEGRO 0
- #define FAZUL 1
- #define FVERDE 2
- #define FCYAN 3
- #define FROJO 4
- #define FROSA 5
- #define FMARRON 6
- #define FBLANCO 7
- #define FNEGROPARPADEANTE 8
- #define FAZULPARPADEANTE 9
- #define FVERDEPARPADEANTE 10
- #define FCYANPARPADEANTE 11
- #define FROJOPARPADEANTE 12
- #define FROSAPARPADEANTE 13
- #define FMARRONPARPADEANTE 14
- #define FBLANCOPARPADEANTE 15
-
- #endif